home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sierra CD-ROM Catalogue #3 (UK)
/
The CD Catalogue - No 3 (1996)(Sierra)(GB).iso
/
ANCIENT
/
SIERRA.BAK
< prev
next >
Wrap
INI File
|
1996-03-22
|
16KB
|
520 lines
[Script]
:Begin
; Ancient Installation Script 12/14/95
;
; Special Vars (some defined as we go)
; *SOURCEDRIVE
; *SOURCEDIR
; *CDROMDRIVE
; *DESTDIR
; *SIERRADIR
; *WINDOWSDIR
; *SYSTEMDIR
; *EDIT[1-4]
;
; FLAG usage:
; FLAG0 - TRUE if not running NT or Win95
; FLAG1 - TRUE if DirectX needs to be installed
; FLAG2 - TRUE if DirectX failed to install
; FLAG3 - TRUE if WinG needs to be installed
; FLAG4 - TRUE if WinG failed to install
; FLAG5 - TRUE if Win32s needs to be installed
; FLAG6 - TRUE if Win32s failed to install
; FLAG8 - TRUE if user wants to register product
; FLAG9 - TRUE if user wants to restart computer
; FLAG13 - TRUE if minimum install
; FLAG14 - TRUE if medium install
; FLAG15 - TRUE if maximum install
; FLAG21 - TRUE if insufficient windows disk space
; FLAG22 - TRUE if insufficient destination disk space
; Groups:
; 10 - Minimum install
; 20 - Medium install (full video)
; 30 - Max. install
; 40 - Win31
; 50 - Win95
;
; Determine if running on NT or Win95
NOTWINNT FLAG0
;
FLAG0 TOGGLEGROUPON 40
FLAG0 GOTO EXETOGGLEEND
TOGGLEGROUPON 50
;
:EXETOGGLEEND
;
; Check Windows disk space (if not NT or Win95)
FLAG0 WINDISKSPACE_LT 8000 FLAG21
FLAG21 DIALOG WinDiskSpaceWarn
FLAG21 GOTO END
;
;
; Ask for destination directory.
PICKDEST End
;
;
; Prompt user for installation size
Flag15
Flag15 GOTO MaxInst
Flag14 GOTO MedInst
;
; Default installation is Minimum. These file are
; always listed in the [Files] section.
;
:MinInst
;DIALOG TraceMinInstall
DISKSPACE_LT 8000 FLAG22
FLAG22 DIALOG DestDiskSpaceWarn
FLAG22 GOTO END
;
;FLAG0 TOGGLEON(INSTALL\BOOTDISK.EXE)
TOGGLEGROUPON 10
GOTO InstCont
;
:MedInst
;DIALOG TraceMedInstall
DISKSPACE_LT 31000 FLAG22
FLAG22 DIALOG DestDiskSpaceWarn
FLAG22 GOTO END
;
TOGGLEGROUPON 20
GOTO MinInst
;
:MaxInst
;DIALOG TraceMaxInstall
DISKSPACE_LT 58000 FLAG22
FLAG22 DIALOG DestDiskSpaceWarn
FLAG22 GOTO END
;
TOGGLEGROUPON 30
GOTO MedInst
;
:InstCont
;
; Copy all of the files to hard drive.
COPY
;
; Install system stuff.
DIALOG NotifyInstallSystem
;
; Set INI file params
;ADDTOINI *DESTDIR\ANCIENT.INI, Config, CDDRIVE, *SOURCEDRIVE
;ADDTOINI *DESTDIR\ANCIENT.INI, Config, DESTDIR, *DESTDIR
;max install paths
FLAG15 ADDTOINI *DESTDIR\ANCIENT.INI, Config, SOUND, *DESTDIR\SOUND
FLAG15 ADDTOINI *DESTDIR\ANCIENT.INI, Config, MUSIC, *DESTDIR\MUSIC
FLAG15 ADDTOINI *DESTDIR\ANCIENT.INI, Config, VIDEO, *DESTDIR\VIDEO
;med install paths
FLAG14 ADDTOINI *DESTDIR\ANCIENT.INI, Config, SOUND, *DESTDIR\SOUND
FLAG14 ADDTOINI *DESTDIR\ANCIENT.INI, Config, MUSIC, *SOURCEDIR\HD\MUSIC
FLAG14 ADDTOINI *DESTDIR\ANCIENT.INI, Config, VIDEO, *DESTDIR\VIDEO
;min install paths
FLAG13 ADDTOINI *DESTDIR\ANCIENT.INI, Config, SOUND, *DESTDIR\SOUND
FLAG13 ADDTOINI *DESTDIR\ANCIENT.INI, Config, MUSIC, *SOURCEDIR\HD\MUSIC
FLAG13 ADDTOINI *DESTDIR\ANCIENT.INI, Config, VIDEO, *SOURCEDIR\HD\VIDEO
ADDTOINI *DESTDIR\ANCIENT.INI, Config, WINDOWS, *WINDOWSDIR
;
;
; Install WinG via Microsoft Setup
VERSIONCHECK *SYSTEMDIR\WING.DLL 1.0.0.37 FLAG3
FLAG3 RUN 1 WING\MSSETUP.EXE *SOURCEDIR\WING\MSSETUP.EXE
VERSIONCHECK *SYSTEMDIR\WING.DLL 1.0.0.37 FLAG4
FLAG4 GOTO FailWinG
;
; Do Windows (not W95) funky update
;
FLAG0 RUN 0 NULL *SOURCEDIR\WINUPD\WINUPD16.EXE *DESTDIR
FLAG0 GOTO ADDICONS
;
; If Win95, do different update
;
; Get MIDI driver and update system files
run 0 NULL *SOURCEDIR\WINUPD\WINUPD.EXE *DESTDIR
;
;
; Create "Sierra" group and add program icons
:ADDICONS
ADDPROGMANGROUP Sierra
FLAG0 ADDPROGMANITEM *DESTDIR\RISE31.EXE, ShortcutTitle, ,*DESTDIR
FLAG0 GOTO SkipRise95Icon
ADDPROGMANITEM *DESTDIR\RISE95.EXE, ShortcutTitle, ,*DESTDIR
;
:SkipRise95Icon
DIALOG Register
FLAG8 REGISTER
;
FLAG0 GOTO SkipDirect
VERSIONCHECK *SYSTEMDIR\DPLAY.DLL 4.02.00.095 FLAG1
FLAG1 INSTALLDIRECTX
;
:SkipDirect
; Install Win32S via Microsoft Setup
;WIN32CHECK 1.30.152.0 (), FLAG5
FLAG0 GOTO InstWin32s
GOTO SkipWin32s
;
:InstWin32s
VERSIONCHECK *SYSTEMDIR\WIN32S16.DLL 1.30.152.0 FLAG5
FLAG5 RUN 1 DISK1\SETUPW32.EXE *SOURCEDIR\DISK1\SETUPW32.EXE
VERSIONCHECK *SYSTEMDIR\WIN32S16.DLL 1.30.152.0 FLAG6
FLAG6 GOTO FailWin32s
;
:SkipWin32s
; If any system files were installed, user MUST restart their system.
;FLAG0 GOTO AskRestart
FLAG3 GOTO AskRestart
FLAG5 GOTO AskRestart
GOTO End
;
;
; Prompt user that their system needs to be restarted.
:AskRestart
DIALOG Restart
FLAG9 RESTARTWINDOWS
;
;
; If user did not restart, remind them again.
DIALOG Done
GOTO End
;
;
; Display DirectX failed to install
:FailDirectX
DIALOG FailedDirectX
GOTO END
;
;
; Display WinG failed to install
:FailWinG
DIALOG FailedWinG
GOTO END
;
;
; Display Win32s failed to install
:FailWin32s
DIAL0G FailedWin32s
GOTO END
;
:End
END
[Setup]
SetupSize=380
BillboardSize=0
CanInstallDOS=No
[Requirements]
SetupVer=2.1.0.0
Colors=256
MemKB=6144
PhysicalMem=7808
VideoSpeed=500
SwapFile=4096
Wave=2
MIDI=0
CPU=486-33
WinVer=310
ScreenWidth=640
ScreenHeight=480
Joystick=0
Printer=0
CDROM=2
[ident]
Version=100
ProductID=96651
ReadMe=readme.wri
[Dialogs]
BEGIN 0,NotifyInstallSystem
NotifyInstTitle
1, NotifySysText
10, OKPB
END
BEGIN 1,Register
RegisterTitle
1, RegisterText1
12, YESPB, (), FLAG8
13, NOPB
END
BEGIN 2, Restart
RestartTitle
1, RestartPrompt1
1, RestartPrompt2
10, RestartNow, (), FLAG9
13, RestartLater
END
BEGIN 3, Done
AllDoneTitle
1, AllDoneText
10, OKPB
END
BEGIN 4, FailedDirectX
FailTitle
1, FailTextDirectX
10, OKPB
END
BEGIN 5, FailedWinG
FailTitle
1, FailTextWinG
10, OKPB
END
BEGIN 6, FailedWin32s
FailTitle
1, FailTextWin32s
10, OKPB
END
BEGIN 10, PromptInstallSize
InstallSizeTitle
1, INSTText1
3, RBMinInstall, (), Flag13
3, RBMedInstall, (), Flag14
3, RBMaxInstall, (), Flag15
10, OKPB
END
BEGIN 23, WinDiskSpaceWarn
DiskWarnTitle
1, WinDiskWarnText1
10, OKPB
END
BEGIN 24, DestDiskSpaceWarn
DiskWarnTitle
1, DestDiskWarnText1
10, OKPB
END
BEGIN 53, TraceNotWin95
DebugTitle,
1, DbgNotOnWin95
10, OKPB
END
[Archives]
ancient.000,1,0,0
[Files]
*DESTDIR\DEMO95.EXE,ancient.sol,484352,1
*DESTDIR\DEMO31.EXE,ancient.sol,466432,1
*DESTDIR\WAIL16.DLL,ancient.sol,80193,1
*DESTDIR\WAIL32.DLL,ancient.sol,129024,1
*DESTDIR\SMACKW32.DLL,ancient.sol,60928,1
*DESTDIR\HOTBUMP.LBM,ancient.sol,43294,1
*DESTDIR\GAMSETUP.DLG,ancient.sol,1815,1
*DESTDIR\README.TXT,ancient.sol,11263,1
*DESTDIR\TILES.WTL,ancient.sol,42,1
*DESTDIR\SHADOW.LBM,ancient.sol,12712,1
*DESTDIR\CREDIT.LBM,ancient.sol,219914,1
*DESTDIR\MAPGEN.LBM,ancient.sol,75382,1
*DESTDIR\FEEDBACK.LBM,ancient.sol,119944,1
*DESTDIR\EGYPTIAN.LBM,ancient.sol,57974,1
*DESTDIR\FLAG.LBM,ancient.sol,9092,1
*DESTDIR\FLAGS2.LBM,ancient.sol,16914,1
*DESTDIR\GEN1.TIL,ancient.sol,2964,1
*DESTDIR\EVENTDLG.LBM,ancient.sol,53396,1
*DESTDIR\ACADPAN.LBM,ancient.sol,43400,1
*DESTDIR\INTRPAN2.LBM,ancient.sol,88046,1
*DESTDIR\BS_FIRE.LBM,ancient.sol,3888,1
*DESTDIR\ARROWS.LBM,ancient.sol,6302,1
*DESTDIR\PLAIN.LBM,ancient.sol,181736,1
*DESTDIR\BUILDING.BLD,ancient.sol,21778,1
*DESTDIR\GRCITY.TXT,ancient.sol,203,1
*DESTDIR\EMPIRE95.HLP,ancient.sol,645849,1
*DESTDIR\STONEPAN.LBM,ancient.sol,119814,1
*DESTDIR\VIDPAN.LBM,ancient.sol,37122,1
*DESTDIR\CITYGR.LBM,ancient.sol,15394,1
*DESTDIR\WALL.LBM,ancient.sol,24068,1
*DESTDIR\DOODAD.LBM,ancient.sol,47718,1
*DESTDIR\LHA.EXE,ancient.sol,34283,1
*DESTDIR\WOW.LBM,ancient.sol,32090,1
*DESTDIR\BEACH.LBM,ancient.sol,168364,1
*DESTDIR\UNITICO.LBM,ancient.sol,4596,1
*DESTDIR\AI.PET,ancient.sol,1249,1
*DESTDIR\EGYPTIAN.PET,ancient.sol,4644,1
*DESTDIR\HORSE.LBM,ancient.sol,3554,1
*DESTDIR\VERSION.INI,ancient.sol,82,1
*DESTDIR\BARB.LBM,ancient.sol,66374,1
*DESTDIR\BARB.UNI,ancient.sol,3375,1
*DESTDIR\TERRA56.LBM,ancient.sol,70510,1
*DESTDIR\BIRD.LBM,ancient.sol,2488,1
*DESTDIR\BUTTONS.LBM,ancient.sol,9946,1
*DESTDIR\CITYEGY.LBM,ancient.sol,17360,1
*DESTDIR\TILES.TIL,ancient.sol,15783,1
*DESTDIR\FOREST.LBM,ancient.sol,170952,1
*DESTDIR\ARMYBOX.LBM,ancient.sol,118720,1
*DESTDIR\SMALL.MAP,ancient.sol,15060,1
*DESTDIR\GRKUNITS.LBM,ancient.sol,21914,1
*DESTDIR\GEN2.TIL,ancient.sol,11579,1
*DESTDIR\DPANEL2.LBM,ancient.sol,45818,1
*DESTDIR\CAFLAGS.LBM,ancient.sol,3058,1
*DESTDIR\GRKBOR3.LBM,ancient.sol,46050,1
*DESTDIR\FOUNTAIN.LBM,ancient.sol,2936,1
*DESTDIR\GUYS.LBM,ancient.sol,4762,1
*DESTDIR\GAMEPLAY.INI,ancient.sol,1960,1
*DESTDIR\NETGAMES.DLG,ancient.sol,971,1
*DESTDIR\AELGFX2.LBM,ancient.sol,25592,1
*DESTDIR\RRAEHELP.INI,ancient.sol,5968,1
*DESTDIR\COMM0314.LBM,ancient.sol,55580,1
*DESTDIR\LHA.HLP,ancient.sol,6752,1
*DESTDIR\BUMPER.DLG,ancient.sol,109,1
*DESTDIR\NET.LBM,ancient.sol,66722,1
*DESTDIR\MAPGEN.DLG,ancient.sol,261,1
*DESTDIR\MAINSCRN.LBM,ancient.sol,90118,1
*DESTDIR\ROADS6.LBM,ancient.sol,53788,1
*DESTDIR\FLAGS.LBM,ancient.sol,24436,1
*DESTDIR\DPANEL1.LBM,ancient.sol,44380,1
*DESTDIR\DESERT.LBM,ancient.sol,184384,1
*DESTDIR\STANDARD.LBM,ancient.sol,13980,1
*DESTDIR\EGYPTIAN.UNI,ancient.sol,3423,1
*DESTDIR\CREDFONT.LBM,ancient.sol,15700,1
*DESTDIR\FEEDBACK.DLG,ancient.sol,655,1
*DESTDIR\ANCIENT.CUL,ancient.sol,2335,1
*DESTDIR\GAMETYP2.DLG,ancient.sol,749,1
*DESTDIR\SP.DLG,ancient.sol,827,1
*DESTDIR\GAMETYP1.DLG,ancient.sol,778,1
*DESTDIR\EMPIRE31.HLP,ancient.sol,383638,1
*DESTDIR\EVENTS.INI,ancient.sol,9462,1
*DESTDIR\INTR0301.LBM,ancient.sol,100048,1
*DESTDIR\GAMEBLNK.LBM,ancient.sol,165130,1
*DESTDIR\MESBORD.LBM,ancient.sol,46680,1
*DESTDIR\SHADTILE.LBM,ancient.sol,37182,1
*DESTDIR\LHA.DOC,ancient.sol,31840,1
*DESTDIR\XSMOKE.LBM,ancient.sol,15750,1
*DESTDIR\PLREVENT.DLG,ancient.sol,121,1
*DESTDIR\EGYPTIAN.AI,ancient.sol,12205,1
*DESTDIR\RESOURCE.CFG,ancient.sol,16,1
*DESTDIR\CREDITS.TXT,ancient.sol,1398,1
*DESTDIR\EVENT.DLG,ancient.sol,119,1
*DESTDIR\EGCITY.TXT,ancient.sol,172,1
*DESTDIR\DPANEL3.LBM,ancient.sol,51214,1
*DESTDIR\GREEK.LBM,ancient.sol,61544,1
*DESTDIR\DPANEL4.LBM,ancient.sol,53460,1
*DESTDIR\TRAILER.LBM,ancient.sol,64370,1
*DESTDIR\BAB.AI,ancient.sol,12402,1
*DESTDIR\CITYBOX.LBM,ancient.sol,39398,1
*DESTDIR\MINI3.LBM,ancient.sol,5476,1
*DESTDIR\WRLDSCRN.LBM,ancient.sol,70332,1
*DESTDIR\CULTTST.CTL,ancient.sol,7609,1
*DESTDIR\CITYSCRN.LBM,ancient.sol,165022,1
*DESTDIR\GREEK.UNI,ancient.sol,3422,1
*DESTDIR\MOUNTAIN.LBM,ancient.sol,182792,1
*DESTDIR\BARUNITS.LBM,ancient.sol,10694,1
*DESTDIR\AE_SM2.LBM,ancient.sol,31198,1
*DESTDIR\AELGFX1.LBM,ancient.sol,18736,1
*DESTDIR\AE_SM1.LBM,ancient.sol,26560,1
*DESTDIR\HISTORY.HLP,ancient.sol,103249,1
*DESTDIR\ANCIENT.INI,ancient.sol,1460,1
*DESTDIR\GOALTIME.TXT,ancient.sol,1224,1
*DESTDIR\GREEK.AI,ancient.sol,11453,1
*DESTDIR\PYRAMID.LBM,ancient.sol,254730,1
*DESTDIR\PLAINPAN.LBM,ancient.sol,44374,1
*DESTDIR\NOBUILD.LBM,ancient.sol,2160,1
*DESTDIR\ROADTST1.RTL,ancient.sol,15928,1
*DESTDIR\LITLUNIT.LBM,ancient.sol,3652,1
*DESTDIR\MAP.LBM,ancient.sol,55584,1
*DESTDIR\MARKET10.LBM,ancient.sol,10836,1
*DESTDIR\MARKPAN.LBM,ancient.sol,42330,1
*DESTDIR\CHARDLG.LBM,ancient.sol,29272,1
*DESTDIR\CITYDOOD.LBM,ancient.sol,33770,1
*DESTDIR\CULT4.LBM,ancient.sol,54230,1
*DESTDIR\GREEK.PET,ancient.sol,1751,1
*DESTDIR\EGYUNITS.LBM,ancient.sol,20928,1
*DESTDIR\PEAKS.LBM,ancient.sol,4342,1
*DESTDIR\CITYBAR.LBM,ancient.sol,15256,1
*DESTDIR\SOUND\CAMELATK.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\PHILOMOV.WAV,ancient.sol,22002,1
*DESTDIR\SOUND\PHILODEF.WAV,ancient.sol,21758,1
*DESTDIR\SOUND\MRCHTMOV.WAV,ancient.sol,18284,1
*DESTDIR\SOUND\MDINFATK.WAV,ancient.sol,17970,1
*DESTDIR\SOUND\LTMISMOV.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\LTMISATK.WAV,ancient.sol,21996,1
*DESTDIR\SOUND\LTINFMOV.WAV,ancient.sol,21860,1
*DESTDIR\SOUND\LTINFATK.WAV,ancient.sol,16492,1
*DESTDIR\SOUND\LTGALMOV.WAV,ancient.sol,113552,1
*DESTDIR\SOUND\CAMELDEF.WAV,ancient.sol,12800,1
*DESTDIR\SOUND\LTCAVATK.WAV,ancient.sol,21996,1
*DESTDIR\SOUND\HVCHADEF.WAV,ancient.sol,21776,1
*DESTDIR\SOUND\MRCHTATK.WAV,ancient.sol,13946,1
*DESTDIR\SOUND\CAMELMOV.WAV,ancient.sol,20076,1
*DESTDIR\SOUND\ELEPHATK.WAV,ancient.sol,22044,1
*DESTDIR\SOUND\MESSAGE.WAV,ancient.sol,38470,1
*DESTDIR\SOUND\MDINFMOV.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\SETLRMOV.WAV,ancient.sol,17388,1
*DESTDIR\SOUND\ELEPHDEF.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\PHILOATK.WAV,ancient.sol,7172,1
*DESTDIR\SOUND\BADBEEP.WAV,ancient.sol,10981,1
*DESTDIR\SOUND\ELEPHMOV.WAV,ancient.sol,21604,1
*DESTDIR\SOUND\HVCAVMOV.WAV,ancient.sol,21970,1
*DESTDIR\SOUND\ACITY.WAV,ancient.sol,19500,1
*DESTDIR\SOUND\HVCHAMOV.WAV,ancient.sol,21548,1
*DESTDIR\SOUND\HVGALATK.WAV,ancient.sol,21676,1
*DESTDIR\SOUND\HVGALDEF.WAV,ancient.sol,21356,1
*DESTDIR\SOUND\HVGALMOV.WAV,ancient.sol,109774,1
*DESTDIR\SOUND\LTGALDEF.WAV,ancient.sol,19628,1
*DESTDIR\SOUND\LTGALATK.WAV,ancient.sol,21932,1
*DESTDIR\SOUND\LTCAVMOV.WAV,ancient.sol,19538,1
*DESTDIR\SOUND\FIGHT.WAV,ancient.sol,24970,1
*DESTDIR\SOUND\LTMISDEF.WAV,ancient.sol,12934,1
*DESTDIR\SOUND\MRCHTDEF.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\HVCHAATK.WAV,ancient.sol,22032,1
*DESTDIR\SOUND\CLICK.WAV,ancient.sol,900,1
*DESTDIR\SOUND\GOODBEEP.WAV,ancient.sol,900,1
*DESTDIR\SOUND\HVCAVATK.WAV,ancient.sol,21626,1
*DESTDIR\SOUND\HVCAVDEF.WAV,ancient.sol,21938,1
*DESTDIR\SOUND\HVINFATK.WAV,ancient.sol,14992,1
*DESTDIR\SOUND\HVINFDEF.WAV,ancient.sol,21996,1
*DESTDIR\SOUND\HVINFMOV.WAV,ancient.sol,22060,1
*DESTDIR\SOUND\HVMISATK.WAV,ancient.sol,21932,1
*DESTDIR\SOUND\HVMISDEF.WAV,ancient.sol,21596,1
*DESTDIR\SOUND\HVMISMOV.WAV,ancient.sol,16556,1
*DESTDIR\SOUND\LOSE.WAV,ancient.sol,91516,1
*DESTDIR\SOUND\MDINFDEF.WAV,ancient.sol,21996,1
*DESTDIR\SOUND\LTINFDEF.WAV,ancient.sol,21758,1
*DESTDIR\SOUND\WIN.WAV,ancient.sol,85020,1
*DESTDIR\SOUND\LTCAVDEF.WAV,ancient.sol,27768,1
*DESTDIR\MUSIC\WORLD1.RAW,ancient.sol,749902,0,30
*DESTDIR\MUSIC\INTRO.RAW,ancient.sol,727664,0,30
*DESTDIR\VIDEOL\D_EGYPT.SMK,ancient.sol,149316,1
*DESTDIR\VIDEOL\SHIPTECH.SMK,ancient.sol,1457368,1
*DESTDIR\VIDEOL\LOST.LBM,ancient.sol,45428,1
*DESTDIR\VIDEOL\SHIPTECH.LBM,ancient.sol,46618,1
*DESTDIR\VIDEOL\CATAPULT.LBM,ancient.sol,39374,1
*DESTDIR\VIDEOL\CITY0.SMK,ancient.sol,891488,1
*DESTDIR\VIDEOL\ANCIENT.SMK,ancient.sol,1661356,1
*DESTDIR\VIDEOL\HORSE1.LBM,ancient.sol,47954,1
*DESTDIR\VIDEOL\CITY1.SMK,ancient.sol,875124,1
*DESTDIR\VIDEOL\D_GREEK.SMK,ancient.sol,131232,1
*DESTDIR\BUILDING\BKWALL03.LBM,ancient.sol,38000,1
*DESTDIR\BUILDING\ACAD03.LBM,ancient.sol,14408,1
*DESTDIR\BUILDING\CHALL03.LBM,ancient.sol,20344,1
*DESTDIR\BUILDING\BARRK01.LBM,ancient.sol,4040,1
*DESTDIR\BUILDING\BKWALL02.LBM,ancient.sol,34380,1
*DESTDIR\BUILDING\BARRK03.LBM,ancient.sol,10838,1
*DESTDIR\BUILDING\BSMTH01.LBM,ancient.sol,2566,1
*DESTDIR\BUILDING\BSMTH02.LBM,ancient.sol,2846,1
*DESTDIR\BUILDING\BSMTH03.LBM,ancient.sol,3228,1
*DESTDIR\BUILDING\CHALL01.LBM,ancient.sol,15950,1
*DESTDIR\BUILDING\WH03.LBM,ancient.sol,4478,1
*DESTDIR\BUILDING\BARRK02.LBM,ancient.sol,7316,1
*DESTDIR\BUILDING\TEMP02.LBM,ancient.sol,27642,1
*DESTDIR\BUILDING\BKWALL01.LBM,ancient.sol,27932,1
*DESTDIR\BUILDING\FTWALL03.LBM,ancient.sol,64948,1
*DESTDIR\BUILDING\LIBR02.LBM,ancient.sol,7274,1
*DESTDIR\BUILDING\FTWALL01.LBM,ancient.sol,15882,1
*DESTDIR\BUILDING\FTWALL02.LBM,ancient.sol,32200,1
*DESTDIR\BUILDING\WH02.LBM,ancient.sol,4180,1
*DESTDIR\BUILDING\ACAD01.LBM,ancient.sol,12946,1
*DESTDIR\BUILDING\ACAD02.LBM,ancient.sol,13914,1
*DESTDIR\BUILDING\WSHP02.LBM,ancient.sol,5576,1
*DESTDIR\BUILDING\CHALL02.LBM,ancient.sol,17948,1
*DESTDIR\BUILDING\LIBR01.LBM,ancient.sol,5742,1
*DESTDIR\BUILDING\LIBR03.LBM,ancient.sol,7854,1
*DESTDIR\BUILDING\MK01.LBM,ancient.sol,13048,1
*DESTDIR\BUILDING\MK02.LBM,ancient.sol,15368,1
*DESTDIR\BUILDING\MK03.LBM,ancient.sol,20802,1
*DESTDIR\BUILDING\TEMP01.LBM,ancient.sol,17464,1
*DESTDIR\BUILDING\TEMP03.LBM,ancient.sol,36856,1
*DESTDIR\BUILDING\WH01.LBM,ancient.sol,3622,1
*DESTDIR\BUILDING\WSHP01.LBM,ancient.sol,5196,1
*DESTDIR\BUILDING\WSHP03.LBM,ancient.sol,5896,1
*DESTDIR\BUILDING\WALL01.LBM,ancient.sol,126634,1
*DESTDIR\BUILDING\WALLA01.LBM,ancient.sol,126636,1
*DESTDIR\BUILDING\WALLB01.LBM,ancient.sol,43656,1